home *** CD-ROM | disk | FTP | other *** search
/ Amiga Magazin: Amiga-CD 1997 November & December / Amiga-CD 1997 #11-12.iso / pd-disketten / ungepackt / 12_95 / apd-12-95-2 / tips&tricks / gnu-c-trick next >
Text File  |  1996-01-25  |  457b  |  22 lines

  1. #ifndef  CLIB_TIMER_PROTOS_H
  2. #define  CLIB_TIMER_PROTOS_H
  3. #ifndef  DEVICES_TIMER_H
  4. #include <devices/timer.h>
  5. #endif
  6.  
  7. #ifdef __cplusplus
  8. extern "C" {
  9. #endif
  10.  
  11. void AddTime(struct timeval *,struct timeval *);
  12. void SubTime(struct timeval *,struct timeval *);
  13. LONG CmpTime(struct timeval *,struct timeval *);
  14. ULONG ReadEClock(struct EClockVal *dest );
  15. void GetSysTime(struct timeval *dest );
  16.  
  17. #ifdef __cplusplus
  18.     }
  19. #endif
  20.  
  21. #endif   /* CLIB_TIMER_PROTOS_H */
  22.